home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
source
/
swags-z
/
sound.swg
/
0015_WHISTLE.PAS.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1993-05-28
|
433b
|
34 lines
{ BILL BUCHANAN }
Uses
Crt;
Procedure OpenWhistle;
Var
Frequency : Integer;
begin
For Frequency := 500 to 1000 do
begin
Delay(1);
Sound(Frequency)
end;
NoSound
end;
Procedure CloseWhistle;
Var
Frequency: Integer;
begin
For Frequency := 1000 downto 500 do
begin
Delay(1);
Sound(Frequency)
end;
NoSound
end;
begin
OpenWhistle;
Readln;
CloseWhistle;
end.